home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / rir135.zip / FINDFILE.BAT < prev    next >
DOS Batch File  |  1991-10-11  |  456b  |  9 lines

  1. echo on
  2. rem This batch file runs RIR so that it searches the entire current hard
  3. rem disk for a file specification.  The %1 in the command is replaced by
  4. rem whatever you type after the batch file name, so if you type
  5. rem "filefind m*.*", rir will search for every file starting with M.
  6. rem The /s parameter is what tells it to "recurse" subdirectories, and
  7. rem the /b parameter tells it to list just file names, with full pathnames.
  8. rir \%1 /b /s
  9.